/* HERO */
.quote-hero {
  height: 60vh;
  background: url('https://images.unsplash.com/photo-1555244162-803834f70033') center/cover no-repeat;
  position: relative;
}

.quote-hero .overlay {
  background: rgba(0,0,0,0.6);
  color: white;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.quote-hero h1 {
  font-size: 3rem;
}

/* FORM SECTION */
.quote {
  padding: 50px 0;
  text-align: center;
}

.quote-form {
  max-width: 700px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* ROW (2 inputs side by side) */
.row {
  display: flex;
  gap: 10px;
}

.row input {
  flex: 1;
}

/* INPUTS */
.quote-form input,
.quote-form select,
.quote-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
}

.quote-form textarea {
  min-height: 120px;
}

/* BUTTON */
.quote-form button {
  padding: 12px;
  background: gold;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

/* FOOTER */
.footer {
  background: #111;
  color: white;
  padding: 30px 0;
  text-align: center;
}